home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / Alert_e.h < prev    next >
C/C++ Source or Header  |  1990-09-26  |  454b  |  17 lines

  1. #ifndef Alert_e_First
  2. #define Alert_e_First
  3.  
  4. enum AlertType {
  5.     eAlertNote,         // OK-Button
  6.     eAlertCaution,      // Yes, Cancel and No-Button
  7.     eAlertStop,         // Yes, Cancel and No-Button
  8.     eAlertMessage,      // OK-Button, no image
  9.     eAlertSun,          // OK-Button, Sun-Logo
  10.     eAlertError         // image only
  11. };
  12.  
  13. extern int ShowAlert(AlertType at, char* fmt, ...);
  14. extern bool TestInterrupt(char *what);
  15.  
  16. #endif Alert_e_First
  17.